home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8" ?> <ME_BRICK GUID="{B927C8A6-89E2-4ADC-887A-3F7CB97CCAD7}" Name="RtDegrees" GUIName="Degrees" Description="Perform per component conversion from radians to degrees [degrees]"> <ME_BRICK_INPUTPARAM GUID="{42D9500D-881B-4C3F-86A9-B05C01CE870E}" Name="Input" Type="RtNumeric"/> <ME_BRICK_OUTPUTPARAM GUID="{1E609738-0169-4903-96BB-7A8A433AA5E9}" Name="Result" Type="RtNumeric"/> <ME_BRICK_CODE><![CDATA[ void RtDegrees(in RtFloat Input, out RtFloat Result) { Result = rtx_Degrees(Input); } void RtDegrees(in RtFloat3 Input, out RtFloat3 Result) { Result = rtx_Degrees(Input); } void RtDegrees(in RtFloat4 Input, out RtFloat4 Result) { Result = rtx_Degrees(Input); } void RtDegrees(in RtFloat3x3 Input, out RtFloat3x3 Result) { Result = rtx_Degrees(Input); } void RtDegrees(in RtFloat4x4 Input, out RtFloat4x4 Result) { Result = rtx_Degrees(Input); } ]]></ME_BRICK_CODE> </ME_BRICK>